home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-07 / lanbook.zip / INSTALL.BAT < prev    next >
DOS Batch File  |  1991-10-20  |  948b  |  54 lines

  1. rem Installation script for the Running LANtastic example program
  2. rem distribution.
  3.  
  4. @echo About to install. Did you copy BOOK.ZIP to a clean directory and
  5. @echo unzip it there? Abort the installation if you did not.
  6.  
  7. @pause
  8.  
  9. rem Make directories to copy files to...
  10. md h
  11. md exe
  12. md doc
  13. md lib
  14. md lan
  15. md zip
  16.  
  17. rem Copy header files...
  18. copy nos.h h\nos.h
  19. copy noslib.h h\noslib.h
  20. copy ncb.h h\ncb.h
  21. del ncb.h
  22. del nos.h
  23. del noslib.h
  24.  
  25. rem Copy executable files...
  26. copy *.exe exe
  27. del *.exe
  28.  
  29. rem Save the original archive file...
  30. copy *.zip zip
  31. del book.zip
  32.  
  33. rem Copy source files...
  34. copy *.c lan
  35. del *.c
  36. copy *.asm lan
  37. del *.asm
  38. copy lan.h lan\lan.h
  39. del lan.h
  40. copy makefile.* lan
  41. del makefile.*
  42.  
  43. rem Copy library files...
  44. copy *.lib lib
  45. del *.lib
  46.  
  47. rem Copy documentation files...
  48. copy *.doc doc
  49. del *.doc
  50.  
  51. @echo The original archive file has been copied to the ZIP directory.
  52. @pause
  53. @type readme|more
  54.